home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / MTRECAL.PAK / RECALDOC.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  77 lines

  1. // recaldoc.h : interface of the CRecalcDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. class CRecalcDoc : public CDocument
  14. {
  15. protected: // create from serialization only
  16.     CRecalcDoc();
  17.     DECLARE_DYNCREATE(CRecalcDoc)
  18.  
  19. // Attributes
  20. public:
  21.     int m_nInt1;
  22.     int m_nInt2;
  23.     int m_nSum;
  24.     BOOL m_bRecalcInProgress;
  25.     BOOL m_bRecalcNeeded;
  26.     int m_nRecalcSpeedSeconds;
  27.  
  28.     UINT m_nCurrentDemoCommand;
  29.     CWinThread* m_pRecalcWorkerThread;
  30.     CRecalcThreadInfo m_recalcThreadInfo;
  31.     HANDLE m_hEventStartRecalc;
  32.     HANDLE m_hEventRecalcDone;
  33.     HANDLE m_hEventKillRecalcThread;
  34.     HANDLE m_hEventRecalcThreadKilled;
  35.  
  36. // Operations
  37. public:
  38.     void UpdateInt1AndInt2(int n1, int n2, BOOL bForceRecalc);
  39.     void RecalcDone();
  40.  
  41. // Overrides
  42.     // ClassWizard generate virtual function overrides
  43.     //{{AFX_VIRTUAL(CRecalcDoc)
  44.     public:
  45.     virtual BOOL OnSaveDocument(LPCTSTR lpszPathName);
  46.     protected:
  47.     virtual BOOL OnNewDocument();
  48.     //}}AFX_VIRTUAL
  49.  
  50. // Implementation
  51. public:
  52.     void RecalcInSingleThread();
  53.     void RecalcInSecondThread();
  54.  
  55.     virtual ~CRecalcDoc();
  56.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  57. #ifdef _DEBUG
  58.     virtual void AssertValid() const;
  59.     virtual void Dump(CDumpContext& dc) const;
  60. #endif
  61.  
  62. protected:
  63.  
  64. // Generated message map functions
  65. protected:
  66.     void OnDemoThread(UINT nCmdID);
  67.     void OnUpdateDemoThread(CCmdUI* pCmdUI);
  68.     //{{AFX_MSG(CRecalcDoc)
  69.     afx_msg void OnRecalcSpeed();
  70.     afx_msg void OnKillWorkerThread();
  71.     afx_msg void OnUpdateKillWorkerThread(CCmdUI* pCmdUI);
  72.     //}}AFX_MSG
  73.     DECLARE_MESSAGE_MAP()
  74. };
  75.  
  76. /////////////////////////////////////////////////////////////////////////////
  77.